:root {
    --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
      "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
      "Source Han Sans CN", sans-serif;
  }
  
  .main-container {
    overflow: hidden;
  }
  
  .main-container,
  .main-container * {
    box-sizing: border-box;
  }
  
  input,
  select,
  textarea,
  button {
    outline: 0;
  }
  
  .main-container {
    position: relative;
    width: 1340px;
    /*1200*/
    height: 1600px;
    margin: 0 auto;
    background: #ffffff;
    overflow: hidden;
  }
  .flex-row-cf {
    position: relative;
    width: 1440px;
    height: 323px;
    margin: 0 0 0 0;
    z-index: 7;
  }
  .rectangle-3 {
    position: relative;
    width: 100%;
    height: 275px;
    background: #9c0000;
    border: 3px solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .header-logo {
    width: 80%;
    max-width: 500px;
  }
  
  .rectangle-5 {
    position: absolute;
      width: 625px;
      height: 96px;
      top: 227px;
      left: 50%; 
      transform: translateX(-50%);
      cursor: pointer;
      background: #ffffff;
      border: none;
      border-top: 5px solid #000000;
      z-index: 22;
      border-radius: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  .header-1-logo {
    width: 70%;
  }
  body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

/* Header */
.section-header {
    text-align: left;
    margin-bottom: 20px;
}

.section-header span {
    display: inline-block;
    background: #ff6600;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
}

.section-header h2 {
    font-size: 22px;
    margin-top: 10px;
}

/* Susunan Grid untuk Services */
.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-top: 20px;
}

.service {
    flex: 1;
    min-width: 250px;
    background: #FFD4CF;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service i {
    font-size: 40px;
    color: #ff6600;
    margin-bottom: 10px;
}

.service h3 {
    font-size: 18px;
    color: #ff6600;
}

.service p {
    font-size: 14px;
    color: #666;
}

/* Animasi Hover untuk Services */
.service:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}

/* Susunan Grid untuk What's Included */
.included-services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.included-box {
    flex: 1;
    min-width: 250px;
    background: #FFD4CF;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.included-box i {
    font-size: 40px;
    color: #ff6600;
    margin-bottom: 10px;
}

.included-box h3 {
    font-size: 18px;
    color: #ff6600;
}

.included-box p {
    font-size: 14px;
    color: #666;
}

/* Animasi Hover untuk What's Included */
.included-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}

/* Responsif */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .included-services {
        flex-direction: column;
        align-items: center;
    }
}
/* Back Button Container */
.back-btn-container {
  margin-top: 40px;
  margin-left: 580px;
  
}

/* Back Button Styling */
.back-btn {
  display: inline-block;
  padding: 12px 74px;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  background: #cccccc; /* Biru */
  border-radius: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.back-btn:hover {
  background: #aaaaaa; /* Biru gelap */
}

.footer {
  background-color: #c20000;
  position: absolute;
  bottom: 0%;
  color: white;
  padding: 40px 0;
  width: 100%;
  max-width: 1340px;
  text-align: left;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-column h3 {
  font-size: 18px;
  color: #FFD4CF;
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-column a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 5px 0;
  font-size: 14px;
  transition: 0.3s;
}

.footer-column a i {
  margin-right: 8px;
}

.footer-column a:hover {
  color: pink;
  transform: translateX(5px);
}

/* Logo */
.footer-logo {
  width: 150px;
  margin-bottom: 10px;
}

/* Social Icons */
.social-icons-1 {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 18px;
  color: white;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #c20000;
}

/* Footer Rights */
.footer-rights {
  font-size: 14px;
  color: white;
  margin-top: 10px;
}
